home *** CD-ROM | disk | FTP | other *** search
- global currSndVolume
-
- on mouseDown
- set newVolume to currSndVolume
- set soundButton to 40
- puppetSprite(soundButton, 1)
- set the member of sprite soundButton to member ("sound" && currSndVolume)
- updateStage()
- set testBottom to the bottom of sprite soundButton - 25
- set testTop to the top of sprite soundButton + 1
- set testLength to testBottom - testTop
- set testInterval to testLength / 8.0
- repeat while the mouseDown
- if (the mouseV < testBottom) and (the mouseV > testTop) then
- set testPoint to testBottom - the mouseV
- case 1 of
- (testPoint > (testInterval * 7)):
- set newVolume to 7
- (testPoint > (testInterval * 6)):
- set newVolume to 6
- (testPoint > (testInterval * 5)):
- set newVolume to 5
- (testPoint > (testInterval * 4)):
- set newVolume to 4
- (testPoint > (testInterval * 3)):
- set newVolume to 3
- (testPoint > (testInterval * 2)):
- set newVolume to 2
- (testPoint > (testInterval * 1)):
- set newVolume to 1
- otherwise:
- set newVolume to 0
- end case
- set the member of sprite soundButton to member ("sound" && newVolume)
- updateStage()
- end if
- end repeat
- puppetSprite(soundButton, 0)
- if rollOver(soundButton) then
- if newVolume <> currSndVolume then
- set currSndVolume to newVolume
- set the soundLevel to currSndVolume
- end if
- end if
- end
-